home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.3 (Developer)…68k, x86, SPARC, PA-RISC] / NeXTSTEP 3.3 Dev Intel.iso / NextDeveloper / Source / GNU / libg++ / libiberty / index.c < prev    next >
C/C++ Source or Header  |  1994-02-15  |  143b  |  12 lines

  1. /* Stub implementation of (obsolete) index(). */
  2.  
  3. extern char * strchr();
  4.  
  5. char *
  6. index (s, c)
  7.   char *s;
  8.   int c;
  9. {
  10.   return strchr (s, c);
  11. }
  12.